run-time library - traduction vers arabe
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

run-time library - traduction vers arabe

SET OF ROUTINES THAT CAN BE INVOKED BY A COMPILED SOFTWARE BINARY DURING ITS EXECUTION
Run-time library

run-time library         
مكتبة زمن التشغيل - مكتبة زمن التنفيذ .
execution time         
PROGRAM LIFECYCLE PHASE, TIME DURING WHICH A PROGRAM IS RUNNING (EXECUTING)
Execution time; Runtime performance; Runtime error; Run-time error; Runtime errors; Run time error; At runtime; Run-time behaviour; Integer divide by zero; Runtime (computing); Run time (program lifecycle phase); Running (computing)
الوقت المستغرق في التنفيذ
LIBRARIES         
  • card catalogues]] were the traditional method of organizing the list of resources and their location within a large library.
  • °C}} to prevent the spread of insects and diseases.
  • Interior of the [[Bibliotheca Alexandrina]], Alexandria, Egypt, showing both stacks and computer terminals
  • Boston Public Library, Boston, Massachusetts, United States]]
  • José Vasconcelos Library]] in Mexico City, Mexico
  • Palma]], [[Balearic Islands]]
  • [[British Museum Reading Room]]
  • A children's library in [[Montreal]], Quebec, Canada in 1943
  • A community library in [[Ethiopia]]
  • The University Library at [[Eötvös Loránd University]], Budapest, Hungary
  • Library shelves in Hong Kong, showing numbers of the classification scheme to help readers locate works in that section
  • 1910–1920}}
  • [[National Library of Wales]], [[Aberystwyth]]
  • Main reading room of the [[Rijksmuseum Research Library]] is the largest public [[art history]] [[research library]] in the [[Netherlands]]. The library is part of the [[Rijksmuseum]] in [[Amsterdam]].
  • The [[Robarts Library]] at the [[University of Toronto]], Canada
  • The Sistine Hall of the [[Vatican Library]]
INSTITUTION CHARGED WITH THE CARE OF A COLLECTION OF LITERARY, MUSICAL, ARTISTIC, OR REFERENCE MATERIALS, SUCH AS BOOKS, MANUSCRIPTS, RECORDINGS, OR FILMS
Libraries; Libary; University libraries; Library (institution); Reference library; Liberry; Reference libraries; Archival library; Bibliothèque; The internet and libraries; The Impact of Internet Search Engines on Libraries; Internet Search Engines and Libraries; Social networking and British libraries; Social media and UK libraries; Social Networking and UK Libraries; Internet search engines and libraries; Library building; Librariers; White House Conference on Library and Information Services; White House Conferences on Library and Information Services; WHCLIS; Children's library; Cybrary; Children's Library; Best library; Children's libraries; Children's library (category)

ألاسم

دارُ الكُتُب ; مَكْتَبَة

Définition

run-time library
<operating system, programming, library> A file containing routines which are linked with a program at run time rather than at compile-time. The advantage of such {dynamic linking} is that only one copy of the library needs to be stored, rather than a copy being included with each executable that refers to it. This can greatly reduce the disk space occupied by programs. Furthermore, it means that all programs immediately benefit from changes (e.g. bug fixes) to the single copy of the library without requiring recompilation. Since the library code is normally classified as read-only to the memory management system, it is possible for a single copy of the library to be loaded into memory and shared by all active programs, thus reducing RAM and virtual memory requirements and program load time. (1997-07-16)

Wikipédia

Runtime library

In computer programming, a runtime library is a set of low-level routines used by a compiler to invoke some of the behaviors of a runtime environment, by inserting calls to the runtime library into compiled executable binary. The runtime environment implements the execution model, built-in functions, and other fundamental behaviors of a programming language. During execution (run time) of that computer program, execution of those calls to the runtime library cause communication between the executable binary and the runtime environment. A runtime library often includes built-in functions for memory management or exception handling. Therefore, a runtime library is always specific to the platform and compiler.

The runtime library may implement a portion of the runtime environment's behavior, but if one reads the code of the calls available, they are typically only thin wrappers that simply package information, and send it to the runtime environment or operating system. However, sometimes the term runtime library is meant to include the code of the runtime environment itself, even though much of that code cannot be directly reached via a library call.

For example, some language features that can be performed only (or are more efficient or accurate) at runtime are implemented in the runtime environment and may be invoked via the runtime library API, e.g. some logic errors, array bounds checking, dynamic type checking, exception handling, and possibly debugging functionality. For this reason, some programming bugs are not discovered until the program is tested in a "live" environment with real data, despite sophisticated compile-time checking and testing performed during development.

As another example, a runtime library may contain code of built-in low-level operations too complicated for their inlining during compilation, such as implementations of arithmetic operations not directly supported by the targeted CPU, or various miscellaneous compiler-specific operations and directives.

The concept of a runtime library should not be confused with an ordinary program library like that created by an application programmer or delivered by a third party, nor with a dynamic library, meaning a program library linked at run time. For example, the C programming language requires only a minimal runtime library (commonly called crt0), but defines a large standard library (called C standard library) that has to be provided by each implementation.